home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / netinet / tcp_var.h < prev    next >
C/C++ Source or Header  |  1988-06-29  |  9KB  |  234 lines

  1. /*
  2.  * Copyright (c) 1982, 1986 Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms are permitted
  6.  * provided that this notice is preserved and that due credit is given
  7.  * to the University of California at Berkeley. The name of the University
  8.  * may not be used to endorse or promote products derived from this
  9.  * software without specific prior written permission. This software
  10.  * is provided ``as is'' without express or implied warranty.
  11.  *
  12.  *    @(#)tcp_var.h    7.7 (Berkeley) 2/27/88
  13.  */
  14.  
  15. #ifndef _TCP_VAR
  16. #define _TCP_VAR
  17.  
  18. /*
  19.  * TCP configuration:  This is a half-assed attempt to make TCP
  20.  * self-configure for a few varieties of 4.2 and 4.3-based unixes.
  21.  * If you don't have a) a 4.3bsd vax or b) a 3.x Sun (x<6), check
  22.  * this carefully (it's probably not right).  Please send me mail
  23.  * if you run into configuration problems.
  24.  *  - Van Jacobson (van@lbl-csam.arpa)
  25.  */
  26.  
  27. #ifndef BSD
  28. #define BSD 42    /* if we're not 4.3, pretend we're 4.2 */
  29. #define OLDSTAT    /* set if we have to use old netstat binaries */
  30. #endif
  31.  
  32. /* #define OLDSTAT    /* set if we have to use old netstat binaries */
  33.  
  34. #if sun || BSD < 43
  35. #define TCP_COMPAT_42    /* set if we have to interop w/4.2 systems */
  36. #endif
  37.  
  38. #ifndef SB_MAX
  39. #ifdef    SB_MAXCOUNT
  40. #define    SB_MAX    SB_MAXCOUNT    /* Sun has to be a little bit different... */
  41. #else
  42. #define SB_MAX    32767        /* XXX */
  43. #endif    SB_MAXCOUNT
  44. #endif    SB_MAX
  45.  
  46. #ifndef IP_MAXPACKET
  47. #define    IP_MAXPACKET    65535        /* maximum packet size */
  48. #endif
  49.  
  50. /*
  51.  * Bill Nowicki pointed out that the page size (CLBYTES) has
  52.  * nothing to do with the mbuf cluster size.  So, we followed
  53.  * Sun's lead and made the new define MCLBYTES stand for the mbuf
  54.  * cluster size.  The following define makes up backwards compatible
  55.  * with 4.3 and 4.2.  If CLBYTES is >1024 on your machine, check
  56.  * this against the mbuf cluster definitions in /usr/include/sys/mbuf.h.
  57.  */
  58. #ifndef MCLBYTES
  59. #define    MCLBYTES CLBYTES    /* XXX */
  60. #endif
  61.  
  62. /*
  63.  * The routine in_localaddr is broken in Sun's 3.4.  We redefine ours
  64.  * (in tcp_input.c) so we use can it but won't have a name conflict.
  65.  */
  66. #ifdef sun
  67. #define in_localaddr tcp_in_localaddr
  68. #endif
  69.  
  70. /* --------------- end of TCP config ---------------- */
  71.  
  72. /*
  73.  * Kernel variables for tcp.
  74.  */
  75.  
  76. /*
  77.  * Tcp control block, one per tcp; fields:
  78.  */
  79. struct tcpcb {
  80.     struct    tcpiphdr *seg_next;    /* sequencing queue */
  81.     struct    tcpiphdr *seg_prev;
  82.     short    t_state;        /* state of this connection */
  83.     short    t_timer[TCPT_NTIMERS];    /* tcp timers */
  84.     short    t_rxtshift;        /* log(2) of rexmt exp. backoff */
  85.     short    t_rxtcur;        /* current retransmit value */
  86.     short    t_dupacks;        /* consecutive dup acks recd */
  87.     u_short    t_maxseg;        /* maximum segment size */
  88.     char    t_force;        /* 1 if forcing out a byte */
  89.     u_char    t_flags;
  90. #define    TF_ACKNOW    0x01        /* ack peer immediately */
  91. #define    TF_DELACK    0x02        /* ack, but try to delay it */
  92. #define    TF_NODELAY    0x04        /* don't delay packets to coalesce */
  93. #define    TF_NOOPT    0x08        /* don't use tcp options */
  94. #define    TF_SENTFIN    0x10        /* have sent FIN */
  95.     struct    tcpiphdr *t_template;    /* skeletal packet for transmit */
  96.     struct    inpcb *t_inpcb;        /* back pointer to internet pcb */
  97. /*
  98.  * The following fields are used as in the protocol specification.
  99.  * See RFC783, Dec. 1981, page 21.
  100.  */
  101. /* send sequence variables */
  102.     tcp_seq    snd_una;        /* send unacknowledged */
  103.     tcp_seq    snd_nxt;        /* send next */
  104.     tcp_seq    snd_up;            /* send urgent pointer */
  105.     tcp_seq    snd_wl1;        /* window update seg seq number */
  106.     tcp_seq    snd_wl2;        /* window update seg ack number */
  107.     tcp_seq    iss;            /* initial send sequence number */
  108.     u_short    snd_wnd;        /* send window */
  109. /* receive sequence variables */
  110.     u_short    rcv_wnd;        /* receive window */
  111.     tcp_seq    rcv_nxt;        /* receive next */
  112.     tcp_seq    rcv_up;            /* receive urgent pointer */
  113.     tcp_seq    irs;            /* initial receive sequence number */
  114. /*
  115.  * Additional variables for this implementation.
  116.  */
  117. /* receive variables */
  118.     tcp_seq    rcv_adv;        /* advertised window */
  119. /* retransmit variables */
  120.     tcp_seq    snd_max;        /* highest sequence number sent
  121.                      * used to recognize retransmits
  122.                      */
  123. /* congestion control (for slow start, source quench, retransmit after loss) */
  124.     u_short    snd_cwnd;        /* congestion-controlled window */
  125.     u_short snd_ssthresh;        /* snd_cwnd size threshhold for
  126.                      * for slow start exponential to
  127.                      * linear switch */
  128. /*
  129.  * transmit timing stuff.
  130.  * srtt and rttvar are stored as fixed point; for convenience in smoothing,
  131.  * srtt has 3 bits to the right of the binary point, rttvar has 2.
  132.  * "Variance" is actually smoothed difference.
  133.  */
  134.     short    t_idle;            /* inactivity time */
  135.     short    t_rtt;            /* round trip time */
  136.     tcp_seq    t_rtseq;        /* sequence number being timed */
  137.     short    t_srtt;            /* smoothed round-trip time */
  138.     short    t_rttvar;        /* variance in round-trip time */
  139.     u_short max_rcvd;        /* most peer has sent into window */
  140.     u_short    max_sndwnd;        /* largest window peer has offered */
  141. /* out-of-band data */
  142.     char    t_oobflags;        /* have some */
  143.     char    t_iobc;            /* input character */
  144. #define    TCPOOB_HAVEDATA    0x01
  145. #define    TCPOOB_HADDATA    0x02
  146. };
  147.  
  148. #define    intotcpcb(ip)    ((struct tcpcb *)(ip)->inp_ppcb)
  149. #define    sototcpcb(so)    (intotcpcb(sotoinpcb(so)))
  150.  
  151. /*
  152.  * TCP statistics.
  153.  * Many of these should be kept per connection,
  154.  * but that's inconvenient at the moment.
  155.  */
  156. struct    tcpstat {
  157. #ifdef OLDSTAT
  158.     /*
  159.      * Declare statistics the same as in 4.3
  160.      * at the start of tcpstat (same size and
  161.      * position) for netstat.
  162.      */
  163.     int    tcps_rcvbadsum;
  164.     int    tcps_rcvbadoff;
  165.     int    tcps_rcvshort;
  166.     int    tcps_badsegs;
  167.     int    tcps_unack;
  168. #define    tcps_badsum    tcps_rcvbadsum
  169. #define    tcps_badoff    tcps_rcvbadoff
  170. #define    tcps_hdrops    tcps_rcvshort
  171.  
  172. #endif OLDSTAT
  173.     u_long    tcps_connattempt;    /* connections initiated */
  174.     u_long    tcps_accepts;        /* connections accepted */
  175.     u_long    tcps_connects;        /* connections established */
  176.     u_long    tcps_drops;        /* connections dropped */
  177.     u_long    tcps_conndrops;        /* embryonic connections dropped */
  178.     u_long    tcps_closed;        /* conn. closed (includes drops) */
  179.     u_long    tcps_segstimed;        /* segs where we tried to get rtt */
  180.     u_long    tcps_rttupdated;    /* times we succeeded */
  181.     u_long    tcps_delack;        /* delayed acks sent */
  182.     u_long    tcps_timeoutdrop;    /* conn. dropped in rxmt timeout */
  183.     u_long    tcps_rexmttimeo;    /* retransmit timeouts */
  184.     u_long    tcps_persisttimeo;    /* persist timeouts */
  185.     u_long    tcps_keeptimeo;        /* keepalive timeouts */
  186.     u_long    tcps_keepprobe;        /* keepalive probes sent */
  187.     u_long    tcps_keepdrops;        /* connections dropped in keepalive */
  188.  
  189.     u_long    tcps_sndtotal;        /* total packets sent */
  190.     u_long    tcps_sndpack;        /* data packets sent */
  191.     u_long    tcps_sndbyte;        /* data bytes sent */
  192.     u_long    tcps_sndrexmitpack;    /* data packets retransmitted */
  193.     u_long    tcps_sndrexmitbyte;    /* data bytes retransmitted */
  194.     u_long    tcps_sndacks;        /* ack-only packets sent */
  195.     u_long    tcps_sndprobe;        /* window probes sent */
  196.     u_long    tcps_sndurg;        /* packets sent with URG only */
  197.     u_long    tcps_sndwinup;        /* window update-only packets sent */
  198.     u_long    tcps_sndctrl;        /* control (SYN|FIN|RST) packets sent */
  199.  
  200.     u_long    tcps_rcvtotal;        /* total packets received */
  201.     u_long    tcps_rcvpack;        /* packets received in sequence */
  202.     u_long    tcps_rcvbyte;        /* bytes received in sequence */
  203. #ifndef OLDSTAT
  204.     u_long    tcps_rcvbadsum;        /* packets received with ccksum errs */
  205.     u_long    tcps_rcvbadoff;        /* packets received with bad offset */
  206.     u_long    tcps_rcvshort;        /* packets received too short */
  207. #endif
  208.     u_long    tcps_rcvduppack;    /* duplicate-only packets received */
  209.     u_long    tcps_rcvdupbyte;    /* duplicate-only bytes received */
  210.     u_long    tcps_rcvpartduppack;    /* packets with some duplicate data */
  211.     u_long    tcps_rcvpartdupbyte;    /* dup. bytes in part-dup. packets */
  212.     u_long    tcps_rcvoopack;        /* out-of-order packets received */
  213.     u_long    tcps_rcvoobyte;        /* out-of-order bytes received */
  214.     u_long    tcps_rcvpackafterwin;    /* packets with data after window */
  215.     u_long    tcps_rcvbyteafterwin;    /* bytes rcvd after window */
  216.     u_long    tcps_rcvafterclose;    /* packets rcvd after "close" */
  217.     u_long    tcps_rcvwinprobe;    /* rcvd window probe packets */
  218.     u_long    tcps_rcvdupack;        /* rcvd duplicate acks */
  219.     u_long    tcps_rcvacktoomuch;    /* rcvd acks for unsent data */
  220.     u_long    tcps_rcvackpack;    /* rcvd ack packets */
  221.     u_long    tcps_rcvackbyte;    /* bytes acked by rcvd acks */
  222.     u_long    tcps_rcvwinupd;        /* rcvd window update packets */
  223. };
  224.  
  225. #ifdef KERNEL
  226. struct    inpcb tcb;        /* head of queue of active tcpcb's */
  227. struct    tcpstat tcpstat;    /* tcp statistics */
  228. struct    tcpiphdr *tcp_template();
  229. struct    tcpcb *tcp_close(), *tcp_drop();
  230. struct    tcpcb *tcp_timers(), *tcp_disconnect(), *tcp_usrclosed();
  231. #endif
  232.  
  233. #endif _TCP_VAR
  234.